home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Broadcaster / Protocols / PreparingToQuit.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  329 b   |  20 lines  |  [TEXT/CWIE]

  1. // PreparingToQuit.h
  2.  
  3. #ifndef PreparingToQuit_h
  4. #define PreparingToQuit_h
  5.  
  6. #ifndef ContextUser_h
  7. #include "ContextUser.h"
  8. #endif
  9. #ifndef SavingOption_h
  10. #include "SavingOption.h"
  11. #endif
  12.  
  13. class PreparingToQuit: public ContextUser
  14.   {
  15.     public:
  16.         virtual void PrepareToQuit( SavingOption save = SavingOption::ask ) = 0;
  17.   };
  18.  
  19. #endif
  20.